home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cool / ge_cool.lha / GE_COOL2.1 / man / oldman3 / Makefile < prev    next >
Makefile  |  1992-05-20  |  1KB  |  56 lines

  1. #
  2. # Copyright (C) 1991 Texas Instruments Incorporated.
  3. # Copyright (C) 1992 General Electric Company.
  4. #
  5. # Permission is granted to any individual or institution to use, copy, modify,
  6. # and distribute this software, provided that this complete copyright and
  7. # permission notice is maintained, intact, in all copies and supporting
  8. # documentation.
  9. #
  10. # Texas Instruments Incorporated and General Electric Company
  11. # provides this software "as is" without express or implied warranty.
  12. #
  13.  
  14. DOCS =     Association AVL_Tree \
  15.     Bignum Binary_Node Binary_Tree Bit_Set \
  16.     calendar country char Complex COOL \
  17.     D_Node Date_Time \
  18.     Gen_String \
  19.     Hash_Table \
  20.     List \
  21.     Matrix \
  22.     N_Node N_Tree \
  23.     Pair \
  24.     Queue \
  25.     Random Range Rational Regexp \
  26.     Set Stack String \
  27.     Timer timezone \
  28.     Vector 
  29.  
  30. all: doc
  31.  
  32. doc:
  33.     @for i in $(DOCS); do \
  34.         echo "nroff -man $$i.3T > $$i.txt"; \
  35.         (nroff -man $$i.3T > $$i.txt); \
  36.     done
  37.  
  38. troff:
  39.     - $(RM) manual.troff
  40.     @for i in $(DOCS); do \
  41.         echo "troff -t -man $$i.3T >> manual.troff; \
  42.         (troff -t -man $$i.3T >> manual.troff); \
  43.     done
  44.  
  45. print: troff
  46.     lpr manual.troff
  47.  
  48. allclean clean:
  49.     - $(RM) *.txt manual.troff
  50.  
  51. alllink link:
  52.  
  53. alldepend depend:
  54.  
  55.  
  56.